100 |
How can I prevent showing the border for selected/highlight/hot items
OleObject oRibbon,var_Items oRibbon = ole_1.Object oRibbon.Background(102,RGB(255,255,255)) var_Items = oRibbon.Items var_Items.Add("Item") var_Items.Add("Item") oRibbon.Refresh() |
99 |
How can I change the item's background/backcolor, when the cursor hovers it (hot)
OleObject oRibbon,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items.Add("Item").HotBackColor = RGB(255,0,0) var_Items.Add("").ToString = "Item[bghot=RGB(255,0,0)]" oRibbon.Refresh() |
98 |
How can I change the item's background/backcolor
OleObject oRibbon,var_Items oRibbon = ole_1.Object oRibbon.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") var_Items = oRibbon.Items var_Items.Add("Item").BackColor = RGB(255,0,0) var_Items.Add("Item").BackColor = 16777216 /*0x1000000*/ var_Items.Add("").ToString = "Item[bg=RGB(255,0,0)]" oRibbon.Refresh() |
97 |
How can I specify/assign the item's identifier
|
96 |
The popup is displayed using a fade/light-up effect. Is it possible to prevent that
|
95 |
How can I show semi-transparent popups
|
94 |
How can I change the popup's border
|
93 |
How can I show a horizontal separator/line between groups (method 3,EBN color)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object oRibbon.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 259 /*exGroupPopupVertical | exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("") var_Item1.AllowEdit = 3 var_Item1.EditBorder = 0 var_Item1.EditWidth = -128 var_Item1.EditValue = 25 var_Item2 = var_Items1.Add("") var_Item2.Enabled = false var_Item2.BackColor = 16777216 /*0x1000000*/ var_Item2.ItemHeight = 8 var_Item2.CaptionWidth = 128 var_Item3 = var_Items1.Add("") var_Item3.AllowEdit = 3 var_Item3.EditBorder = 0 var_Item3.EditWidth = -128 var_Item3.EditValue = 25 oRibbon.Refresh() |
92 |
How can I show a horizontal separator/line between groups (method 2,solid color)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 259 /*exGroupPopupVertical | exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("") var_Item1.AllowEdit = 3 var_Item1.EditBorder = 0 var_Item1.EditWidth = -128 var_Item1.EditValue = 25 var_Item2 = var_Items1.Add("") var_Item2.Enabled = false var_Item2.BackColor = RGB(128,128,128) var_Item2.ItemHeight = 8 var_Item2.CaptionWidth = 128 var_Item3 = var_Items1.Add("") var_Item3.AllowEdit = 3 var_Item3.EditBorder = 0 var_Item3.EditWidth = -128 var_Item3.EditValue = 25 oRibbon.Refresh() |
91 |
How can I show a horizontal separator/line between groups (method 1,pattern)
|
90 |
How can I show a vertical separator/line between groups (method 3,EBN color)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object oRibbon.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("") var_Item1.ItemHeight = 128 var_Item1.AllowEdit = 1027 /*exItemEditVertical | exItemEditSlider*/ var_Item1.EditBorder = 0 var_Item1.EditWidth = 32 var_Item1.EditValue = 25 var_Item2 = var_Items1.Add("") var_Item2.Enabled = false var_Item2.BackColor = 16777216 /*0x1000000*/ var_Item2.ItemHeight = 96 var_Item2.CaptionWidth = 8 var_Item3 = var_Items1.Add("") var_Item3.ItemHeight = 128 var_Item3.AllowEdit = 1027 /*exItemEditVertical | exItemEditSlider*/ var_Item3.EditBorder = 0 var_Item3.EditWidth = 32 var_Item3.EditValue = 25 oRibbon.Refresh() |
89 |
How can I show a vertical separator/line between groups (method 2,solid color)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("") var_Item1.ItemHeight = 128 var_Item1.AllowEdit = 1027 /*exItemEditVertical | exItemEditSlider*/ var_Item1.EditBorder = 0 var_Item1.EditWidth = 32 var_Item1.EditValue = 25 var_Item2 = var_Items1.Add("") var_Item2.Enabled = false var_Item2.BackColor = RGB(128,128,128) var_Item2.ItemHeight = 96 var_Item2.CaptionWidth = 8 var_Item3 = var_Items1.Add("") var_Item3.ItemHeight = 128 var_Item3.AllowEdit = 1027 /*exItemEditVertical | exItemEditSlider*/ var_Item3.EditBorder = 0 var_Item3.EditWidth = 32 var_Item3.EditValue = 25 oRibbon.Refresh() |
88 |
How can I show a vertical separator/line between groups (method 1,pattern)
|
87 |
How can I show a pattern on the items
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") var_Items.BackColor = RGB(255,255,255) var_Items.Padding = "2,2,2,12" var_Items.BackgroundExt = "root[pattern=0x006,patterncolor=RGB(128,128,128),frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor>`,align=0x21])" oRibbon.Refresh() |
86 |
How can I show a thick frame arround the items
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") var_Items.BackColor = RGB(255,255,255) var_Items.Padding = "2,2,2,12" var_Items.BackgroundExt = "root[frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor>`,align=0x21])" oRibbon.Refresh() |
85 |
How can I add some additional icons on the background
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object oRibbon.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 1 var_Items1 = var_Item.Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") var_Items.BackColor = RGB(255,255,255) var_Items.Padding = "0,0,0,16" var_Items.BackgroundExt = "root[text=`<img>2</img><font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor><img>2</img>`,align=0x21]" oRibbon.Refresh() |
84 |
How can I add some additional text on the background
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 1 var_Items1 = var_Item.Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") var_Items.BackColor = RGB(255,255,255) var_Items.Padding = "0,0,0,8" var_Items.BackgroundExt = "root[text=`<font ;6><fgcolor 808080>clipboard`,align=0x21]" oRibbon.Refresh() |
83 |
How can I disable incremental searching
|
82 |
How can I assign a tooltip to an item (method 2)
|
81 |
How can I assign a tooltip to an item (method 1)
OleObject oRibbon oRibbon = ole_1.Object oRibbon.Items.Add("ToolTip").Tooltip = "This is a bit of text that should be shown when cursor hovers the item" oRibbon.Refresh() |
80 |
How can I assign a spin field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Spin") var_Item.AllowEdit = 512 var_Item.EditWidth = 16 var_Item.EditValue = 15 var_Item.EditBorder = 0 var_Item.EditOption(2,1000) var_Item1 = var_Items.Add("Edit-Spin") var_Item1.AllowEdit = 513 /*exItemEditSpin | exItemEditText*/ var_Item1.EditWidth = -128 var_Item1.EditValue = 15 var_Item1.EditOption(2,1000) var_Item2 = var_Items.Add("Splider-Spin") var_Item2.AllowEdit = 515 /*exItemEditSpin | exItemEditSlider*/ var_Item2.EditWidth = -128 var_Item2.EditValue = 25 var_Item2.EditBorder = 0 oRibbon.Refresh() |
79 |
How can I assign a spin field to the item (method 1)
|
78 |
How can I add a vertical slider (method 2)
|
77 |
How can I add a vertical slider (method 1)
|
76 |
How can I disable an editor (method 2)
|
75 |
How can I disable an editor (method 1)
|
74 |
How can I lock an editor (method 2)
|
73 |
How can I lock an editor (method 1)
|
72 |
How can I assign a font field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Font") var_Item.AllowEdit = 7 var_Item.EditWidth = -128 var_Item.EditValue = "Tahoma" oRibbon.Refresh() |
71 |
How can I assign a font field to the item (method 1)
|
70 |
How can I assign a color field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Color") var_Item.AllowEdit = 6 var_Item.EditBorder = 0 var_Item.EditWidth = -128 var_Item.EditValue = 255 oRibbon.Refresh() |
69 |
How can I assign a color field to the item (method 1)
|
68 |
How can I assign a scrollbar field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("ScrollBar") var_Item.AllowEdit = 5 var_Item.EditWidth = -128 var_Item.EditValue = "25" oRibbon.Refresh() |
67 |
How can I assign a scrollbar field to the item (method 1)
|
66 |
Is it possible to change the tooltip beging shown when I change the slider/scroll/progress value
|
65 |
How can I hide the tooltip beging shown when I change the slider/scroll/progress value
|
64 |
How can I assign a progress field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Progress") var_Item.AllowEdit = 4 var_Item.EditWidth = -128 var_Item.EditValue = 25 oRibbon.Refresh() |
63 |
How can I assign a progress field to the item (method 1)
|
62 |
How can I assign a slider field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Item1,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Slider") var_Item.AllowEdit = 3 var_Item.EditWidth = -128 var_Item.EditValue = 25 var_Item1 = var_Items.Add("Slider") var_Item1.AllowEdit = 3 var_Item1.EditBorder = 0 var_Item1.EditWidth = -128 var_Item1.EditOption(1,50) var_Item1.EditOption(2,450) var_Item1.EditOption(3,2) var_Item1.EditOption(4,50) var_Item1.EditOption(5,"value = vmin ? '<br><font ;6><b>'+value : ( value = vmax ? '<br><font ;6><b>'+value : ( value = 200 ? '<br><font ;6><b><fgcolor FF0000>'+value : '' ) )") var_Item1.EditValue = 345 oRibbon.Refresh() |
61 |
How can I assign a slider field to the item (method 1)
|
60 |
How can I assign a mask (time) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Time") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = "99:00:00;;0;overtype,warning=Invalid character" var_Item.EditValue = "123456" oRibbon.Refresh() |
59 |
How can I assign a mask (time) field to the item (method 1)
|
58 |
How can I assign a mask (license key) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("License Key") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = "AAAA-AAAA-AAAA-AAAA" var_Item.EditValue = "1234" oRibbon.Refresh() |
57 |
How can I assign a mask (license key) field to the item (method 1)
|
56 |
How can I assign a mask (IP address) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("IP Address") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = "{0,255}.{0,255}.{0,255}.{0,255}" var_Item.EditValue = "1.2.3.4" oRibbon.Refresh() |
55 |
How can I assign a mask (IP address) field to the item (method 1)
|
54 |
How can I assign a mask (phone) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Phone") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = "!(9999) 000 000;;;empty,select=4,overtype,beep" var_Item.EditValue = "0771638317" oRibbon.Refresh() |
53 |
How can I assign a mask (phone) field to the item (method 1)
|
52 |
How can I assign a mask (date) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Item1,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = "`Date: `{1,12}/{1,31}/{1950,2050};;;select=1" var_Item.EditValue = 2015-02-15 var_Item1 = var_Items.Add("Date") var_Item1.AllowEdit = 2 var_Item1.EditWidth = -128 var_Item1.EditMask = "!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,overtype" var_Item1.EditValue = 2015-02-15 oRibbon.Refresh() |
51 |
How can I assign a mask (date) field to the item (method 1)
|
50 |
How can I assign a mask (integer) field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Integer") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = ";;;float,grouping=,digits=0" var_Item.EditValue = 1000 var_Item1 = var_Items.Add("Integer-Grouping") var_Item1.AllowEdit = 2 var_Item1.EditWidth = -128 var_Item1.EditMask = ";;;float,decimal=,digits=0,select=1" var_Item1.EditValue = 1000 var_Item2 = var_Items.Add("Integer-In-Range") var_Item2.AllowEdit = 2 var_Item2.EditWidth = -128 var_Item2.EditMask = "{0,2050}" var_Item2.EditValue = 1000 oRibbon.Refresh() |
49 |
How can I assign a mask (integer) field to the item (method 1)
|
48 |
How can I assign a mask field to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Mask") var_Item.AllowEdit = 2 var_Item.EditWidth = -128 var_Item.EditMask = ";;;float,select=1" var_Item.EditValue = 1000 oRibbon.Refresh() |
47 |
How can I assign a mask field to the item (method 1)
|
46 |
How can I assign an edit / text-box to the item (method 2)
/*begin event EditChange(oleobject Itm) - Occurs when the user alters the item's text box field.*/ /* oRibbon = ole_1.Object MessageBox("Information",string( String(Itm) )) */ /*end event EditChange*/ OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("Mask") var_Item.AllowEdit = 1 var_Item.EditValue = "this is a text" var_Item.EditWidth = -128 oRibbon.Refresh() |
45 |
How can I assign an edit / text-box to the item (method 1)
|
44 |
How can I display a tab into the ribbon (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1,var_Items2,var_Items3 oRibbon = ole_1.Object oRibbon.Background(102,RGB(240,240,240)) var_Items = oRibbon.Items var_Items.ToString = "[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100]))" var_Items1 = var_Items.Item(-10).Items var_Items1.Add("",0,0).Padding = "8,0,0,0" var_Item = var_Items1.Add("New Page") var_Item.ToString = "[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))" var_Item.Caption = "Page<off -5><font ;5><b>1</b></font></off>" var_Items2 = var_Item.Items.Item(0).Items var_Item1 = var_Items2.Add("add here fields for page 1") var_Item1.ID = -1000 var_Item1.Enabled = false var_Item1.BackColor = RGB(255,0,0) var_Item2 = var_Items1.Add("New Page") var_Item2.ToString = "[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=0x01]([id=0][group=0x03]([]))" var_Item2.Caption = "Page<off -5><font ;5><b>2</b></font></off>" var_Items3 = var_Item2.Items.Item(0).Items var_Item3 = var_Items3.Add("add here fields for page 2") var_Item3.ID = -1001 var_Item3.Enabled = false var_Item3.BackColor = RGB(0,255,0) var_Items1.Add("",0,0).Padding = "8,0,0,0" oRibbon.Refresh() |
43 |
How can I add check-buttons to items, without showing the check-box (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("Check 1") var_Item1.Check = true var_Item1.Checked = true var_Item1.ShowCheckedAsSelected = 1 var_Item2 = var_Items1.Add("Check 2") var_Item2.Check = true var_Item2.ShowCheckedAsSelected = 1 var_Item3 = var_Items1.Add("Check 3") var_Item3.Check = true var_Item3.Checked = true var_Item3.ShowCheckedAsSelected = 1 oRibbon.Refresh() |
42 |
How can I add check-buttons to items, without showing the check-box (method 1)
|
41 |
How can I add radio buttons to items, without showing the radio-buttons (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("Radio 1",,1000) var_Item1.ShowCheckedAsSelected = 1 var_Item1.Radio = true var_Item1.RadioGroup = 100 var_Item2 = var_Items1.Add("Radio 2",,1001) var_Item2.ShowCheckedAsSelected = 1 var_Item2.Radio = true var_Item2.RadioGroup = 100 var_Item3 = var_Items1.Add("Radio 2",,1003) var_Item3.ShowCheckedAsSelected = 1 var_Item3.Radio = true var_Item3.RadioGroup = 100 var_Items1.Item(1000).Checked = true oRibbon.Refresh() |
40 |
How can I add radio buttons to items, without showing the radio-buttons (method 1)
|
39 |
How can I add check-buttons to items (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("Check 1") var_Item1.Check = true var_Item1.Checked = true var_Items1.Add("Check 2").Check = true oRibbon.Refresh() |
38 |
How can I add check-buttons to items (method 1)
|
37 |
How can I add radio buttons to items (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 1 var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("Radio 1",,1000) var_Item1.Radio = true var_Item1.RadioGroup = 100 var_Item2 = var_Items1.Add("Radio 2",,1001) var_Item2.Radio = true var_Item2.RadioGroup = 100 var_Item3 = var_Items1.Add("Radio 2",,1003) var_Item3.Radio = true var_Item3.RadioGroup = 100 var_Items1.Item(1000).Checked = true oRibbon.Refresh() |
36 |
How can I add radio buttons to items (method 1)
|
35 |
How can I change the selection/highlighting color
OleObject oRibbon oRibbon = ole_1.Object oRibbon.SelBackColor = RGB(0,0,0) oRibbon.Background(102,RGB(128,0,0)) oRibbon.Background(111,RGB(255,255,255)) oRibbon.ToString = "[group=3](Item 1[chk],Item 2[chk])" |
34 |
How can I prevent showing/hide the border on the selected/highlighted item
|
33 |
How can I display a tab into the ribbon (method 1)
OleObject oRibbon,var_Item,var_Item1 oRibbon = ole_1.Object oRibbon.Background(102,RGB(240,240,240)) oRibbon.ToString = "[group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03]([id=50][pad=8,0,0,0],Page<off -5><font ;5><b>1</b></font></off>[id=60][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=80],add here fields for page 1[id=-1000][dis])),Page<off -5><font ;5><b>2</b></font></off>[id=100][typ=2][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][group=0x03][tab=-100][pad=2,0,2,0][popupalign=1]([group=0x03]([id=120],add here fields for page 2[id=-1001][dis])),[id=140][pad=8,0,0,0]),[id=-99][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100]))" var_Item = oRibbon.Items.Item(-1000) var_Item.BackColor = RGB(255,0,0) var_Item1 = oRibbon.Items.Item(-1001) var_Item1.BackColor = RGB(0,255,0) |
32 |
How do I prevent highlighting the item (method 2.b)
OleObject oRibbon,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items.Add("No highlight").Enabled = false var_Items.Add("Item 2") var_Items.Add("Item 3") oRibbon.Refresh() |
31 |
How do I prevent highlighting the item (method 2.a)
OleObject oRibbon,var_Item,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("No highlight",2) var_Item.Items.Add("") var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Item.ShowPopupArrow = false var_Items.Add("Item 2") var_Items.Add("Item 3") oRibbon.Refresh() |
30 |
How do I prevent highlighting the item (method 1.b)
|
29 |
How do I prevent highlighting the item (method 1.a)
|
28 |
How can I can I assign pictures or images for the item (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object oRibbon.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") oRibbon.HTMLPicture("pic2","c:\exontrol\images\auction.gif") var_Items = oRibbon.Items var_Items.Add("Item").HTMLImage = "pic1" var_Items.Add("Item").HTMLImage = "pic2" var_Items.Add("",1) var_Items.Add("Item <img>pic1</img>") var_Items.Add("Item <img>pic2</img>") var_Items.Add("",1) var_Items.Add("<img>pic1</img> Item <img>pic2</img>") oRibbon.Refresh() |
27 |
How can I can I assign pictures or images for the item (method 1)
OleObject oRibbon oRibbon = ole_1.Object oRibbon.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") oRibbon.HTMLPicture("pic2","c:\exontrol\images\auction.gif") oRibbon.ToString = "Item[himg=pic1],Item[himg=pic2],[sep],Item <img>pic1</img>,Item <img>pic2</img>,[sep],<img>pic1</img> Item <img>pic2</img>" |
26 |
How can I can I assign icons for the item (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object oRibbon.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") var_Items = oRibbon.Items var_Items.Add("Item").Image = 1 var_Items.Add("Item").Image = 2 var_Items.Add("",1) var_Items.Add("Item <img>1</img>") var_Items.Add("Item <img>2</img>") var_Items.Add("",1) var_Items.Add("Item <img>1</img>").Image = 1 oRibbon.Refresh() |
25 |
How can I can I assign icons for the item (method 1)
OleObject oRibbon oRibbon = ole_1.Object oRibbon.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oRibbon.Items.ToString = "Item[img=1],Item[img=2],[sep],Item <img>1</img>,Item <img>2</img>,[sep],Item <img>1</img>[img=1]" oRibbon.Refresh() |
24 |
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object oRibbon.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") var_Items = oRibbon.Items var_Items.Padding = "2,2,2,2" var_Items.BackColor = 16777216 /*0x1000000*/ var_Items.Add("Item 1") var_Items.Add("Item 2") var_Items.Add("Item 3") oRibbon.Refresh() |
23 |
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 1)
|
22 |
How can I change the background color for a collection of items/group (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items.Padding = "2,2,2,2" var_Items.BackColor = RGB(255,0,0) var_Items.Add("Item 1") var_Items.Add("Item 2") var_Items.Add("Item 3") oRibbon.Refresh() |
21 |
How can I change the background color for a collection of items/group (method 1)
|
20 |
How can I change the visual appearance / background color (EBN) for a specified item (method 2)
|
19 |
How can I change the visual appearance / background color (EBN) for a specified item (method 1)
|
18 |
How can I change the background color for a specified item (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items.Add("Item 1") var_Items.Add("Item 2").BackColor = RGB(255,0,0) var_Items.Add("Item 3") oRibbon.Refresh() |
17 |
How can I change the background color for a specified item (method 1)
|
16 |
How can I change the visual appearance (EBN) of the floating popups (method 2, applies to single popup)
|
15 |
How can I change the visual appearance (EBN) of the floating popups (method 1, applies to all)
OleObject oRibbon oRibbon = ole_1.Object oRibbon.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oRibbon.Items.ToString = "Popup(Item 1,Item 2,Item 3)" oRibbon.PopupAppearance = 16777216 /*0x1000000 | */ oRibbon.Refresh() |
14 |
How can I change the visual appearance of the floating popups (method 2, applies to single popup)
|
13 |
How can I change the visual appearance of the floating popups (method 1, applies to all)
|
12 |
How do I add a popup or a sub-menu so it show when cursor hovers it (method 2)
OleObject oRibbon,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items1 = var_Items.Add("Popup",2).Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") oRibbon.Refresh() |
11 |
How do I add a popup or a sub-menu so it show when cursor hovers it (method 1)
|
10 |
How can I arrange the items by grouping (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Item3,var_Items,var_Items1,var_Items2,var_Items3,var_Items4 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Items1 = var_Item.Items var_Item1 = var_Items1.Add("Horizontal",2) var_Item1.GroupPopup = 1 var_Items2 = var_Item1.Items var_Items2.Add("Sub-Item <b>A</b>") var_Items2.Add("Sub-Item <b>B</b>") var_Items2.Add("Sub-Item <b>C</b>") var_Items1.Add("").CaptionWidth = 16 var_Item2 = var_Items1.Add("Vertical",2) var_Item2.Alignment = 1 var_Item2.GroupPopup = 257 /*exGroupPopupVertical | exGroupPopup*/ var_Items3 = var_Item2.Items var_Items3.Add("Sub-Item <b>A</b>") var_Items3.Add("Sub-Item <b>B</b>") var_Items3.Add("Sub-Item <b>C</b>") var_Items1.Add("").CaptionWidth = 16 var_Item3 = var_Items1.Add("Popup",2) var_Items4 = var_Item3.Items var_Items4.Add("Sub-Item <b>A</b>") var_Items4.Add("Sub-Item <b>B</b>") var_Items4.Add("Sub-Item <b>C</b>") oRibbon.Refresh() |
9 |
How can I arrange the items by grouping (method 1)
|
8 |
How can I arrange some items vertically, and some horizontally (method 2)
OleObject oRibbon,var_Item,var_Item1,var_Item2,var_Items,var_Items1,var_Items2,var_Items3 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Items1 = var_Item.Items var_Items1.Add("1") var_Items1.Add("2") var_Items1.Add("3") var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Item1 = var_Items.Add("",2) var_Items2 = var_Item1.Items var_Items2.Add("4") var_Items2.Add("5") var_Items2.Add("6") var_Item1.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ var_Item2 = var_Items.Add("",2) var_Items3 = var_Item2.Items var_Items3.Add("7") var_Items3.Add("8") var_Items3.Add("9") var_Item2.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ oRibbon.Refresh() |
7 |
How can I arrange some items vertically, and some horizontally (method 1)
|
6 |
How can I assign multiple-lines to an item (method 2)
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Items1 = var_Item.Items var_Items1.Add("Item 1").Caption = "Item <br><c><b>1" var_Items1.Add("Item 2").Caption = "Item <br><c><b>2" var_Items1.Add("Item 3").Caption = "Item <br><c><b>3" var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ oRibbon.Refresh() |
5 |
How can I assign multiple-lines to an item (method 1)
|
4 |
How can I add new items arranged horizontally to the ribbon control (method 2)
OleObject oRibbon,var_Item,var_Items,var_Items1 oRibbon = ole_1.Object var_Items = oRibbon.Items var_Item = var_Items.Add("",2) var_Items1 = var_Item.Items var_Items1.Add("Item 1") var_Items1.Add("Item 2") var_Items1.Add("Item 3") var_Item.GroupPopup = 3 /*exNoGroupPopupFrame | exGroupPopup*/ oRibbon.Refresh() |
3 |
How can I add new items arranged horizontally to the ribbon control (method 1)
|
2 |
How can I add new items to the ribbon control (method 2)
OleObject oRibbon,var_Items oRibbon = ole_1.Object var_Items = oRibbon.Items var_Items.Add("Item 1") var_Items.Add("Item 2") var_Items.Add("Item 3") oRibbon.Refresh() |
1 |
How can I add new items to the ribbon control (method 1)
|